remember me « Security « Spring Q&A





1. Blazeds and Spring security, can remember-me be used in this combination?    stackoverflow.com

I'm using the latest release of Spring Blzeds integration which has some features making it easier to secure invocations on destination objects. However the basic setup I use which uses the ...

2. Manual authentication in spring using the rememember me cookie    stackoverflow.com

I have a requirement by which I need to detect user authorization in the login screen itself. (refer to my Previous Question) I tried and searched for a cookie by name SPRING_SECURITY_REMEMBER_ME_COOKIE I ...

3. Problem with Remember Me Service in Spring Security    stackoverflow.com

I'm trying to implement a "remember me" functionality in my website using Spring. The cookie and entry in the persistent_logins table are getting created correctly. Additionally, I can see that the ...

4. Spring Security RememberMe Services with Session Cookie    stackoverflow.com

I am using Spring Security's RememberMe Services to keep a user authenticated. I would like to find a simple way to have the RememberMe cookie set as a session cookie rather ...

5. How to introduce 'Remember me' checkbox to existing project with Spring Security?    stackoverflow.com

I have a pretty standard project with Spring Security. I have a login form and I need to add 'Remember me' checkbox there. How can I do that? I can provide some code ...

6. Spring security + remember me question + wicket    stackoverflow.com

I am using wicket 1.4.7 + spring 3.0 + spring security 3.0 Problem is : Spring security authenticate the user via cookie (remember-me service) but Wicket's AuthenticatedWebSession couldn't understand this and ...

7. Remember me in Spring security to remember only user-name    stackoverflow.com

I am using Spring security in my application and wish to know if there is a way to "ask" spring to only remember the user-name of the user that comes to ...

8. Springs Simple not working :-(    stackoverflow.com

I am trying to make use of Spring Security's <remember-me/> authentification. The line in my security context looks like this:

 <security:remember-me key="89dqj219dn910lsAc12" user-service-ref="jpaUserDetailsService"/>
Although I use my own implementation of ...

9. Simple Spring ... help please    stackoverflow.com

All I want, is a simple remember-me. I read http://static.springsource.org/spring-security/site/docs/3.0.x/reference/remember-me.html What I have done so far:

  1. Created my own UserDetailsService to work with Hibernate / JPA. My impl. does not consider ...





10. evercookie in Spring Security rememberme-service    stackoverflow.com

I'd like to use the evercookie javascript library to receive the users cookie and make the spring security rememberme-service use it. I read a bit about implementing a custom remember-me service, but ...

11. Make something after remember me authentication?    stackoverflow.com

greetings all i am using spring security 3.0.2 and i am using the following configuration for remember me

<http use-expressions="true" >  
         <remember-me  token-repository-ref="tokenRepository"
 ...

12. Make Programmatic Remember Me?    stackoverflow.com

greetings all i am using spring security 3.0.2 and my login form doesn't use the spring login configuration, it's a custom login form (i have to make it this way) i was wondering how ...

13. Spring Security 2.0.6 Issues with Remember Me    stackoverflow.com

I have gone through the steps to setup the remember me. My understanding is that using this feature a cookie is created and when the user comes back to the browser and ...

14. Spring RememberMe processAutoLoginCookie    stackoverflow.com

I'm using Spring Security 3.0.0 and persistent RememberMe. When the server restarts and a browser window is still open, we need to be able to continue using the application without having ...

15. Spring Security Remember Me option not working    stackoverflow.com

I am trying to setup 'Remember Me' option in my web page. While creating cookie there are no issues but when I close and open browser I am seeing below error: ...

16. Remember-me- spring security    stackoverflow.com

I am currently trying to implement remember me functionality in my website. Following is part of my configuration

<security:remember-me services-ref="rememberMeServices" />  
<bean id="rememberMeServices" class="com.entertainment.ecom.web.auth.EcomRemembe rMeServices">  
<property name="userDetailsService" ref="ecomUserDetailsService"/>  
<property ...





17. Spring Security remember-me Authentication Not Requiring Password after Log Out    stackoverflow.com

I'm using Spring Security 3.0.5 and I'm utilizing the remember-me capabilities. One thing I noticed is that when I log out and go back to the form login I only ...

18. Remember-Me with Spring Security, various questions    stackoverflow.com

I'm using Spring Framework 3.0.5 and Spring Security 3.0.5 for developing a webapplication where users can log in and log out, using Remember-Me-Service, if they want to. As I don't have pretty ...

19. remember-me and max-sessions    stackoverflow.com

dear sir, I have set 'remember-me data-source-ref="dataSource"/' and 'concurrency-control max-sessions="1" error-if-maximum-exceeded="true"' in my xml file. when I login with checking the "remember me", I thought I will automaticly login in second ...

20. Spring Security: How to clear `remember me` cookie programmatically?    stackoverflow.com

I'm using logout method in web-app like below, but if i check remember me logout doesn't work, because cookie isn't cleared. How to clear programmatically this cookie in my method (or ...

21. Authenticated and UnAuthenticated views of the same resource in Spring Security    stackoverflow.com

I am trying to make a resource that can be accessed by both authenticated and unauthenticated users. I also have the remember-me authentication in place. For a user accessing the resource ...

22. Spring remember-me authentication in eclipse RAP application    stackoverflow.com

i like to implement Spring remember-me authentication in my eclipse RAP application. So far i've got the 'normal' user login/authentication working, but now i want the credentials to be remembered. The spring docs ...

23. Spring Security Remember me with custom authentication provider    stackoverflow.com

I am using GWT with spring security. I have a custom authentication provider where I perform all my authentication. How can I configure the remember me feature without using the UserDetailsService? ...

24. Remember-me cookie and Varnish    stackoverflow.com

I'm trying to get Spring Security's remember-me feature to work with Varnish but this seems incredibly hard. With regular login, it's easy, I just setup Varnish to bypass cache for j_spring_security_check ...

25. Implementing remember me without a key    stackoverflow.com

i found some samples that implements remember me functionality by just

<remember-me/>
and other samples implement it as:
<remember-me key="_spring_security_remember_me"/>
and i want to know what is the difference between the two declarations, and is ...

26. Log user in with remember-me functionality in Spring 3.1    stackoverflow.com

I currently log users in programmatically (like when they login through Facebook or other means than using my login form) with:

SecurityContextHolder.getContext().setAuthentication(
  new UsernamePasswordAuthenticationToken(user, "", authorities)
);
What I want to do instead ...

27. Spring security Remember me is not working in spring MVC application.    stackoverflow.com

Authentication and Authorization is working properly. But remember me is not working properly in the application. I have used both database authentication and ldap authentication using spring security (only one at ...

28. Remember Me using spring security    forum.springsource.org

Remember Me using spring security Hi, I am currently trying to implement remember me functionality in my website. Following is part of my configuration ...

29. Spring Security Auto Logging in after Browser Close (non-remember-me security)    forum.springsource.org

Spring Security Auto Logging in after Browser Close (non-remember-me security) Anyone know why the SecurityContext would still be in session after closing the browser? I'm not using remember me but the ...

30. Log user in with remember-me functionality in Spring Security 3.1    forum.springsource.org

The key corresponds to the RememberMeAuthenticationProvider's key so that you know which AuthenticationProvider validated it. If you are not using the RememberMeAuthenticationProvider, then this does not really matter.

31. remember me not work for spring acegi    forum.springsource.org

remember me not work for spring acegi Hi my remember me check box does not work. below is my implementation any helps?? xhtml page Code: configuration ...

32. Remember Me vs. Anonymous Authentication    forum.springsource.org

Remember Me vs. Anonymous Authentication Hello, I think I'm looking for something that combines elements of both authentication approaches. I want to use the Remember Me form of authentication if the ...

33. RememberMe service with multiple Authentication Providers    forum.springsource.org

I have two Authentication Providers: authenticationDao - net.sf.acegisecurity.providers.dao.jdbc.JdbcDaoImp l ldapAuthenticationDao - net.sf.acegisecurity.providers.dao.ldap.LdapPasswo rdAuthenticationDao can I only define on rememberMe service or should I define one for each authentication provider? my remember ...

34. Rememberme with password encoder    forum.springsource.org

Jun 2nd, 2006, 10:13 AM #1 pidepiper View Profile View Forum Posts Private Message Junior Member Join Date Jun 2006 Posts 6 Rememberme with password encoder I'm having trouble using Acegi ...

35. RememberMe and explicit authentication?    forum.springsource.org

I use RememberMe authentication, however, there are some URIs which I must have explicit authentication for. So if I were to go to /special/*, even if the user is logged in ...

36. Remember Me problem with Anonymous user    forum.springsource.org

Nov 17th, 2006, 05:22 PM #1 chuisman9955 View Profile View Forum Posts Private Message Member Join Date Oct 2005 Location Edmonton, AB Posts 40 Remember Me problem with Anonymous user Hello, ...

37. Logging a user out with remember me enabled    forum.springsource.org

Logging a user out with remember me enabled Hi again, Is there a way to log a user out when he/she has ticked the "remember me" checkbox ? I've tried, as ...

38. Enabling Remember me in Form based Authentication    forum.springsource.org

Enabling Remember me in Form based Authentication I am using form based authentication and I want to enable to users to select( or not select) Remember me option in the form. ...

39. Remember me token exist without user exist.    forum.springsource.org

Remember me token exist without user exist. hi, in a typical developed environment, we may clean the user table, but with a valid remember me cookie exist in browser. so when ...

41. Acegi "remember me" service not working on IE    forum.springsource.org

Acegi "remember me" service not working on IE Hi, I am not sure whether I can post Acegi related doubts over here. But I am stuck with a problem with Acegi ...

42. How to rename SPRING_SECURITY_REMEMBER_ME_COOKIE    forum.springsource.org

43. Can RememberMe only remember username and not perform authentication    forum.springsource.org

I have a business rule that states the user is required to login each time they enter the site, but, if they check the Remember Me checkbox, their username will be ...

44. Remember Me without Password not possible?    forum.springsource.org

Remember Me without Password not possible? Hi, I would like to use remember me feature of SpringSecurity. I'm using namespace configuration and added the tag to the one ...

45. 'Secure' Attribute in Remember-me cookie?    forum.springsource.org

'Secure' Attribute in Remember-me cookie? A security audit was recently performed on our web application, and returned the following warning: Vulnerability Detail Device app.example.com (xx.xx.xx.xx) Vulnerability Missing Secure Attribute in an ...

46. might Remember Me bug- for rememver user and concurrent session    forum.springsource.org

I try login with remember user and close browser within 5 seconds and and again try to login but still gives login form.. but same thing work if i remove concurrent ...

47. Remember Me w/o Acegi    forum.springsource.org

Remember Me w/o Acegi I'm working on a project that doesn't use Spring Security / Acegi. The log on is very basic, and it really doesn't make sense to invest the ...

48. "remember me" w/o Acegi    forum.springsource.org

"remember me" w/o Acegi I'm working on a project that doesn't use Spring Security / Acegi. The login is very basic, and it really doesn't make sense to invest the time ...

49. Spring Security 3.0 Remember me Token based not working    forum.springsource.org

Spring Security 3.0 Remember me Token based not working I have the following setup for Spring Security in 3.0. If I change the remember-me element to datasource-ref instead of key, it ...

51. JSESSIONID and RememberMe with Tomact and Acegi    forum.springsource.org

JSESSIONID and RememberMe with Tomact and Acegi I am using Spring 2.0 and Acegi 1.7 with tomcat with 6.0.13. I am sending some emails from web application . When the user ...

52. Setting the domain on Remember Me Cookie authentication    forum.springsource.org

Setting the domain on Remember Me Cookie authentication Hi I was wondering what the easiest way to modify the domain selected by the remember me cookie-based authentication is? Currently it is ...

53. Palm WebOS & Remember-Me Authentication    forum.springsource.org

We're using the Simple Hash-Based Token remember-me Approach in a Spring MVC app that is served over mobile devices. The remember-me method works fine in Blackberry and iPhone/touch devices, but it ...

54. Multiple roles and 'remember me'    forum.springsource.org

Multiple roles and 'remember me' Hi, We have a web app which was redeveloped using spring a couple of years ago. We currently authenticate against LDAP. We have 3 different types ...

55. Problem with Remember Me Service in Spring Security    forum.springsource.org

Problem with Remember Me Service in Spring Security Hi, I'm trying to implement a "remember me" functionality in my website using Spring. The cookie and entry in the persistent_logins table are ...

56. security 3.0 remember me example    forum.springsource.org

i go through http://static.springsource.org/sprin...member-me.html site and implemented remember me feature of spring security 3.0. But, i used property to implement it. After reading further, i came to know, this ...

57. remember-me in spring security    forum.springsource.org

remember-me in spring security HI , I am using spring security 3.0.2 to implement rememeber me service in my jsp based application. I have created persistent_logins table in backend with following ...

58. Doubt about Spring Security Remember - Me    forum.springsource.org

Doubt about Spring Security Remember - Me Hi you guys!! I have an interesting doubt about Remember - Me in Spring Security. I have read the documentation about it, but i ...

59. Make something after remember me authentication ?    forum.springsource.org

greetings all i am using spring security 3.0.2 and i am using the following configuration for remember me Code: ...